home *** CD-ROM | disk | FTP | other *** search
- @Echo Off
- Echo 3+MHS Gateway - Installation
- Echo.
- IF %1x == x Goto Help
- IF %2x == x Goto Help
- Echo Installing from: %1
- Echo Installing to MHS Directory: %2
- Echo.
- Echo This installation procedure assumes the 3+MHS Gateway has already
- Echo been defined to the MHS Directory Manager as a gateway (i.e. the
- Echo standard MHS gateway subtree has been created). If this step has
- Echo not been done, press CTRL-BREAK, otherwise
- Pause
-
- Echo Copying files from %1 to %2\PUBLIC
- COPY %1\*.* %2\PUBLIC
- Echo Creating 3+MAIL processing subdirectories
- MD %2\3MAIL
- MD %2\3MAIL\IN
- MD %2\3MAIL\OUT
- Echo.
- Echo 3+MHS Gateway software has been installed.
- Echo.
- Echo Don't forget to modify 3MHS-IN.BAT and 3MHS-OUT.BAT.
- Echo.
- Goto Done
-
- :Help
- ECHO Usage: 3MHSINST Source GWDir
- ECHO where
- ECHO Source = Path to distribution files (e.g. A:)
- ECHO GWDir = 3+MHS Gateway directory (e.g. F:\MHS\MAIL\GATES\3MHS)
- ECHO.
- ECHO WARNING: Do *NOT* specify trailing backslash!
- ECHO.
-
- :Done
-